home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 019a / rel10b.zip / REL10.DOC < prev   
Text File  |  1993-03-14  |  5KB  |  103 lines

  1.  
  2. R E L O C A T E   1 . 0 b
  3. ============================================================================
  4.  
  5. Relocate 1.0b [REL.EXE]
  6. A utility for relocating files to a different directory.
  7. Copyright (c) 1993, Brent Buchanan
  8. All rights reserved.
  9.  
  10. ============================================================================
  11.  
  12.  
  13. >\<  Program Information
  14.  
  15.      Relocate saves you time by eliminating the "copy" then "del" sequence and
  16.      combining  them  into one step.  Usually, this is referred to as "moving"
  17.      the file.  (I prefer not  to  call  it  "moving" because the file doesn't
  18.      actually go anywhere.) The process behind the program is  rather  simple:
  19.      Relocate will take a filename and re-assign its directory path, and since
  20.      (as  I  mentioned  earlier)  the  contents  of the file aren't physically
  21.      transferred from one area to  another,  this  process is much faster than
  22.      copying and then deleting the file.  The result is the same, however,  as
  23.      the file ends up in the new directory.
  24.  
  25.  
  26. >\<  Program Operation
  27.  
  28.      SYNTAX:  REL <[sourcepath\]filespec> <targetpath>
  29.  
  30.      The syntax is relatively  simple  and  easy  to  use.   You first need to
  31.      identify which files will be relocated, and then tell the  program  which
  32.      directory they'll be relocated to.  An example will illustrate some notes
  33.      of importance:
  34.  
  35.      Example: REL c:\data\*.* c:\text\
  36.  
  37.      This  will  simply relocate all of the files in the C:\DATA\ directory to
  38.      the C:\TEXT\ directory.  The ending  "\"  is  not necessary on the target
  39.      path, so typing "c:\text" for the destination directory  would  have  the
  40.      same effect.  However, typing "c:\data" for the source path does not work
  41.      the  same  way;  you need to give a filespec.  (If you wanted to relocate
  42.      all of the files in  the  directory,  you  can type "c:\data\" instead of
  43.      "c:\data\*.*"; the program will assume that all files were intended.)
  44.  
  45.      We remain human (for the most part) so there's always the possibility  of
  46.      making  a mistake.  In the case of relocating files, the only big mistake
  47.      that could be made would be  to  write  one file over the top of another.
  48.      (And according to the laws of the universe, the  overwritten  file  would
  49.      have  to  be  the  most  critical  one  on  disk.)  Relocate  avoids  the
  50.      possibility  of  this happening by prompting you when a duplicate file is
  51.      found:
  52.  
  53.          whatever.nam already exists in target directory - overwrite? (y/n)
  54.  
  55.      To this, you simply type  in  "y"  or  "n"  (case doesn't matter) and the
  56.      program will  continue  on,  after  acting  (or  not  acting)  upon  your
  57.      response.
  58.  
  59.      Relocate will relocate hidden and archive files, but not files  with  the
  60.      read-only or system attributes.
  61.  
  62.      When  you are relocating files on the current directory, typing the drive
  63.      letter is optional.  In order for the program to relocate the files, both
  64.      the source and desitination path must  be  on the same drive.  That's it.
  65.      Have fun.
  66.  
  67.  
  68. >\<  System Requirements
  69.  
  70.      Relocate was written for an IBM PC or compatible using DOS 2.x or higher.
  71.      An 80x25 display is required, and can be color or mono.
  72.  
  73.  
  74. >\<  Contacting the Author
  75.  
  76.      If you have any  comments  or  find  any  bugs,  I would be interested in
  77.      hearing from you.  You can reach me on CompuServe  at  75210,3120  or  by
  78.      calling the Fremont Arsenal BBS at 913-267-5238 or 913-267-9624 (N81) and
  79.      leaving  E-Mail.   If  you  have  access  to  CircuitNet, you can route a
  80.      message to me at 913000.
  81.  
  82.  
  83. >\<  Legal Jargon and Other Neat Stuff
  84.  
  85.      This program is provided "as is"  with no warranty, expressed or implied,
  86.      as to its merchantability or suitability to task.  The user  assumes  all
  87.      risk  of  using  and  evaluating  this  program.   You  are  allowed (and
  88.      encouraged) to freely distribute this program,  as long as no part of the
  89.      program or documentation is modified, and as long as  this  documentation
  90.      file  is distributed with the executable.  No fee may be charged for this
  91.      program other than a reasonable media expense.
  92.  
  93.      Version 1.0b corrects a small problem with attempting to  relocate  files
  94.      across  drives.   This  isn't possible to do, but instead of receiving an
  95.      error message from the program, any attempt to relocate a file to another
  96.      drive would produce a runtime  error.   The  error stemmed for a fault in
  97.      the source that caused the program to think that files were always on the
  98.      same drive.  This has been corrected.
  99.  
  100. Released: 03/09/93 as freeware
  101. Suggested archive name: REL10B.ZIP
  102. Relocate was written in Turbo Pascal 6.0
  103.